home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 15535 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.1 KB

  1. Path: csun.edu!kc44097
  2. From: kc44097@csun.edu (chen)
  3. Newsgroups: comp.lang.c++
  4. Subject: Help!
  5. Date: 6 Apr 1996 01:13:03 GMT
  6. Organization: California State University, Northridge
  7. Message-ID: <4k4gev$lgo@dewey.csun.edu>
  8. NNTP-Posting-Host: louie.csun.edu
  9.  
  10.  
  11.   Can anyone help me out this problems below,please e-mail me,
  12. my e-mail address is kc44097@huey.csun.edu
  13.                      Thanks
  14. -------------------------------------------------------------------------
  15.  
  16.  3. Consider the following C program:
  17.  
  18.        void fun (void)
  19.         {
  20.           int a,b,c; /*define 1 */
  21.           ...
  22.           while(...)
  23.            {
  24.              int b,c,d; /* define 2 */
  25.              ...  <---------------------- 1
  26.              while (...)
  27.                 {
  28.                   int c,d,e; /* define 3 */
  29.                   ... <----------------------- 2
  30.                 }
  31.              ... <--------------- 3
  32.            }
  33.           ... <------------------- 4
  34.         }
  35.  
  36.      For each of the four marked points in this function,list each visia-
  37.      ble variable,along with the nbumber of the defination statement that
  38.      defines it.
  39.